home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / smfdoor / frmhelpf.frm < prev    next >
Text File  |  1999-08-13  |  3KB  |  109 lines

  1. VERSION 5.00
  2. Begin VB.Form FrmHelpFavorites 
  3.    BackColor       =   &H00000000&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Favorites"
  6.    ClientHeight    =   2205
  7.    ClientLeft      =   4470
  8.    ClientTop       =   2775
  9.    ClientWidth     =   2040
  10.    Icon            =   "FrmHelpFavorites.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2205
  15.    ScaleWidth      =   2040
  16.    Begin VB.CommandButton cmdDone 
  17.       Caption         =   "Done"
  18.       Height          =   375
  19.       Left            =   240
  20.       TabIndex        =   3
  21.       Top             =   1680
  22.       Width           =   1335
  23.    End
  24.    Begin VB.Label lblGo 
  25.       BackColor       =   &H80000012&
  26.       Caption         =   "Delete Favorite"
  27.       BeginProperty Font 
  28.          Name            =   "MS Sans Serif"
  29.          Size            =   12
  30.          Charset         =   0
  31.          Weight          =   700
  32.          Underline       =   0   'False
  33.          Italic          =   0   'False
  34.          Strikethrough   =   0   'False
  35.       EndProperty
  36.       ForeColor       =   &H00FF0000&
  37.       Height          =   375
  38.       Left            =   120
  39.       MousePointer    =   10  'Up Arrow
  40.       TabIndex        =   2
  41.       Top             =   1080
  42.       Width           =   1935
  43.    End
  44.    Begin VB.Label lblViewFavorites 
  45.       BackColor       =   &H80000012&
  46.       Caption         =   "View Favorites"
  47.       BeginProperty Font 
  48.          Name            =   "MS Sans Serif"
  49.          Size            =   12
  50.          Charset         =   0
  51.          Weight          =   700
  52.          Underline       =   0   'False
  53.          Italic          =   0   'False
  54.          Strikethrough   =   0   'False
  55.       EndProperty
  56.       ForeColor       =   &H00FF0000&
  57.       Height          =   375
  58.       Left            =   120
  59.       MousePointer    =   10  'Up Arrow
  60.       TabIndex        =   1
  61.       Top             =   600
  62.       Width           =   1815
  63.    End
  64.    Begin VB.Label lblAddfavoprite 
  65.       BackColor       =   &H80000012&
  66.       Caption         =   "Add Favorite"
  67.       BeginProperty Font 
  68.          Name            =   "MS Sans Serif"
  69.          Size            =   12
  70.          Charset         =   0
  71.          Weight          =   700
  72.          Underline       =   0   'False
  73.          Italic          =   0   'False
  74.          Strikethrough   =   0   'False
  75.       EndProperty
  76.       ForeColor       =   &H00FF0000&
  77.       Height          =   375
  78.       Left            =   120
  79.       MousePointer    =   10  'Up Arrow
  80.       TabIndex        =   0
  81.       Top             =   120
  82.       Width           =   1695
  83.    End
  84. End
  85. Attribute VB_Name = "FrmHelpFavorites"
  86. Attribute VB_GlobalNameSpace = False
  87. Attribute VB_Creatable = False
  88. Attribute VB_PredeclaredId = True
  89. Attribute VB_Exposed = False
  90. Private Sub cmdDone_Click()
  91.     FrmHelpFavorites.Hide
  92.     frmHElp.Show
  93. End Sub
  94.  
  95. Private Sub lblAddfavoprite_Click()
  96.     frmhelpaddfavorite.Show
  97.     FrmHelpFavorites.Hide
  98. End Sub
  99.  
  100. Private Sub lblGo_Click()
  101.     frmhelpDeleteFavorite.Show
  102.     FrmHelpFavorites.Hide
  103. End Sub
  104.  
  105. Private Sub lblViewFavorites_Click()
  106.     frmHelpViewFavorites.Show
  107.     FrmHelpFavorites.Hide
  108. End Sub
  109.